home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr11 / cuj9303.zip / 1103018A < prev    next >
Text File  |  1993-06-21  |  165b  |  9 lines

  1. /* ctime function */
  2. #include <time.h>
  3.  
  4. char *(ctime)(const time_t *tod)
  5.     {    /* convert calendar time to local text */
  6.     return (asctime(localtime(tod)));
  7.     }
  8.  
  9.